home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Entertainment / luff stuff / luff⁄makefile < prev    next >
Makefile  |  1985-11-08  |  649b  |  30 lines

  1. .SUFFIXES: .b .c
  2. SOURCES=adm.c automat.c autom.c chose.c inmove.c\
  3.     terminal.c upd.c catch.c  updtht.c utboard.c
  4. OBJECTS=adm.b automat.b autom.b chose.b inmove.b\
  5.     terminal.b upd.b catch.b  updtht.b utboard.b
  6.  
  7. .c.b:   ; cc68 -m -c $*.c
  8.  
  9. MacLuff.rsrc:   b.out MacLuff.rc
  10.         rmaker MacLuff.rc
  11.  
  12. b.out: ${OBJECTS}
  13.     cc68 -m ${OBJECTS}
  14.  
  15. adm.b autom.b chose.b inmove.b\
  16. terminal.b upd.b catch.b  updtht.b utboard.b: def.h
  17.  
  18. adm.b inmove.b terminal.b : MacLuff.h
  19.  
  20. cleanup:
  21.     rm -f *.b
  22.  
  23. load:
  24.     macput -r MacLuff -a LUFF
  25.  
  26. print:
  27.     print makefile MacLuff.rc MacLuff.h def.h\
  28.     adm.c automat.c autom.c chose.c inmove.c\
  29.     terminal.c upd.c catch.c  updtht.c utboard.c
  30.